home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / rs0422.zip / CONFIGUR / RTABLE.H < prev    next >
C/C++ Source or Header  |  1989-08-30  |  176b  |  10 lines

  1. /* The structure used for storing a routing table in memory */
  2.  
  3. struct rt_tab {
  4.     unsigned char cmd;
  5.     unsigned char dta;
  6.     unsigned char next[10];
  7. };
  8.  
  9. #define MaxRT 400
  10.